home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / compress / uucosr10.arc / MAKEFILE < prev    next >
Text File  |  1991-05-25  |  233b  |  9 lines

  1. TARGET=uucoder.prg
  2. OBJECTS=uucoder.o event.o encode.o decode.o fsel.o
  3. HEADERS=uucoder.h
  4. LIBRARIES=\lib\aesfast.a
  5. CFLAGS=-v -O
  6.  
  7. $(TARGET) : $(OBJECTS) $(LIBRARIES) $(HEADERS)
  8.     cc $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBRARIES)
  9.